home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / cron.daily / aptitude < prev    next >
Text File  |  2009-09-28  |  314b  |  12 lines

  1. #!/bin/sh
  2.  
  3. bak=/var/backups
  4.  
  5. # Shamelessly ripped from /etc/cron.daily/standard
  6. if test -f /var/lib/aptitude/pkgstates && cd $bak ; then
  7.     if ! cmp -s aptitude.pkgstates.0 /var/lib/aptitude/pkgstates ; then
  8.         cp -p /var/lib/aptitude/pkgstates aptitude.pkgstates
  9.         savelog -c 7 aptitude.pkgstates > /dev/null
  10.     fi
  11. fi
  12.